home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia1.dir / 00923_Script_Alien Flee < prev    next >
Text File  |  1995-05-21  |  795b  |  42 lines

  1. on mouseDown
  2.   global ZappedOrNot
  3.   put the movietime of sprite 48 into ZappedOrNot
  4.   if ZappedOrNot >= 1200 then 
  5.     puppetsound 0
  6.     exit
  7.   end if
  8.   put "Flee" into f
  9.   put "FleeHL" into fHL
  10.   hiliter 8, f, fHL
  11.   puppetsound "flee.aif"
  12.   updatestage
  13. end
  14.  
  15.  
  16.  
  17. on mouseUp
  18.   global gTheDay, themovieName, ZappedOrNot, snap1, snap2
  19.   
  20.   if ZappedOrNot >= 1200 then 
  21.     puppetsound 0
  22.     exit
  23.   end if
  24.   set the castNum of sprite 8 = cast "Flee"
  25.   set the movierate of sprite 48 = 0
  26.   puppetsprite 48, false
  27.   updatestage
  28.   set the sound of cast themovieName to 0
  29.   
  30.   if snap1 <> 0 then
  31.     updatestage
  32.     puppetsound 0
  33.     go frame "AlienDarkroom"
  34.     exit
  35.   else
  36.     updatestage
  37.     puppetsound 0
  38.     go frame gtheday & "NoShots"
  39.     exit
  40.   end if
  41. end
  42.